home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-12-02 | 440 b | 15 lines | [TEXT/ToyS] |
- on run
- set f to new file default name "Put Res.rsrc"
- res create f creator type "RSED" file type "rsrc"
- set rf to res open f with write permission
- try
- set x to {class:push button, bounds:[190, 65, 250, 85], label:"OK", depends on:3}
- set y to {bounds:[190, 65, 250, 85], label:"OK", depends on:3}
- res put rf id 1000 data x
- res put rf id 2000 data y
- on error number n
- res close rf
- error number n
- end try
- res close rf
- end run